go/ast.SendStmt.Chan (field)
8 uses
go/ast (current package)
ast.go#L662: Chan Expr
ast.go#L793: func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
walk.go#L186: Walk(v, n.Chan)
go/parser
parser.go#L1991: return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
parser.go#L2310: comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}
go/printer
nodes.go#L1386: p.expr0(s.Chan, depth)
go/types
stmt.go#L466: check.expr(nil, &ch, s.Chan)
golang.org/x/tools/go/ast/inspector
walk.go#L176: walk(v, edge.SendStmt_Chan, -1, n.Chan)